home *** CD-ROM | disk | FTP | other *** search
/ Software 2000 / Software 2000 Volume 1 (Disc 2 of 2).iso / games / g037.dms / in.adf / score_reset.AMOS / score_reset.amosSourceCode
Encoding:
AMOS Source Code  |  1978-02-09  |  157 b   |  9 lines

  1. SCORE_RESET
  2. Procedure SCORE_RESET
  3. HINAME$="nobody"
  4. HISCORE=0
  5.    Open Out 1,"df0:data/hiscore.dat"
  6.    Print #1,HINAME$
  7.    Print #1,HISCORE
  8.    Close 1
  9. End Proc